home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue46 / Clinic / AutomationServer1.dpr < prev    next >
Encoding:
Text File  |  1999-03-12  |  400 b   |  18 lines

  1. program AutomationServer1;
  2.  
  3. uses
  4.   Forms,
  5.   AutomationServer1MainFormU in 'AutomationServer1MainFormU.pas' {FrmServer},
  6.   AutomationServer1_TLB in 'AutomationServer1_TLB.pas',
  7.   AutomationServer1ClassU in 'AutomationServer1ClassU.pas' {Clock: CoClass};
  8.  
  9. {$R *.TLB}
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TFrmServer, FrmServer);
  16.   Application.Run;
  17. end.
  18.